Job   A
last analyzed

Complexity

Total Complexity 2

Size/Duplication

Total Lines 10
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 6
dl 0
loc 10
rs 10
c 0
b 0
f 0
wmc 2

2 Functions

Rating   Name   Duplication   Size   Complexity  
A constructor 0 4 1
A log 0 3 1
1
export class Job {
2
    constructor(data) {
3
        this.data = data;
4
        this._logs = [];
5
    }
6
7
    log(string) {
8
        this._logs.push(string);
9
    }
10
}
11